home *** CD-ROM | disk | FTP | other *** search
/ Utilities Professional 1-1500 / Utilities Professional 1-1500 (1994)(WPD)[!].iso / 12511500 / var1441.dms / var1441.adf / devs / mountlist next >
Text File  |  1992-04-13  |  4KB  |  140 lines

  1. /* MountList for V1.3 */
  2.  
  3. /*  Mount Entry for the new Console Handler */
  4.  
  5. NEWCON:
  6.     Handler = L:Newcon-Handler
  7.     Priority = 5
  8.     StackSize = 1000
  9.  
  10. #
  11.  
  12. /*  This is an example of an alternative type of non-filing device mount,
  13.     used to mount the non-buffered serial handler
  14. */
  15.  
  16. AUX:
  17.     Handler = L:Aux-Handler
  18.     Stacksize = 1000
  19.     Priority = 5
  20. #
  21. /*  This is a non-filing system device */
  22.  
  23. PIPE:
  24.     Handler = L:Pipe-Handler
  25.     Stacksize = 6000
  26.     Priority = 5
  27.     GlobVec = -1
  28. #                   
  29.  
  30. /* An example mount entry using the fast file system with a partition
  31.    of the hard disk using the 2090 disk controller.  PREP has been
  32.    used to create the first partition (up to cylinder 20).  The second
  33.    partition is MOUNTed, using the following entry:
  34.    NOTE: Some hard disk drivers require more stack than specified here.
  35.    Some may required less.
  36.    (The hard disk is not included; this is only an example.)
  37. */
  38.  
  39. FAST:
  40.     Device = hddisk.device
  41.     FileSystem = l:FastFileSystem
  42.     Unit   = 1
  43.     Flags  = 0
  44.     Surfaces  = 4
  45.     BlocksPerTrack = 17
  46.     Reserved = 2
  47.     Interleave = 0
  48.     LowCyl = 21  ;  HighCyl = 800
  49.     Buffers = 30
  50.     GlobVec = -1
  51.     BufMemType = 1
  52.     Mount = 1
  53.     DosType = 0x444F5301
  54.     StackSize = 4000
  55. #
  56.  
  57. /* Let's say you have an A2000 with an internal drive, and an external
  58.    drive, and you want to refer to the external drive as DF1: as well
  59.    as DF2:   Well, this MountList entry will do it for you.  This technique
  60.    can be extended to provide you with a drive A: and B: if you really
  61.    want.
  62. */
  63.  
  64. DF1:       Device = trackdisk.device
  65.            Unit   = 2
  66.            Flags  = 1
  67.            Surfaces  = 2
  68.            BlocksPerTrack = 11
  69.            Reserved = 2
  70.            Interleave = 0
  71.            LowCyl = 0  ;  HighCyl = 79
  72.            Buffers = 20
  73.            BufMemType = 3
  74. #
  75.  
  76. /* ramdisk.device has a maximum of 2048 blocks. It supports units 0 through
  77. 31 with flags:
  78.  
  79.       1  -  Recoverable. Data is preserved.
  80.       2  -  Formatable and Diskcopyable. You can diskcopy to this drive.
  81.             Note - Even though RamDisk is intelligent and will deallocate
  82.             memory for unused tracks, a format or diskcopy will force
  83.             the entire disk to be copied to memory before the deallocation
  84.             starts. This is guarinteed to fragment memory.
  85.       4  -  AutoBoot. Can boot from this drive. If this flag is set,
  86.             then the disk is remounted automatically on warm boot.
  87.             NOTE - Does Not Work with fastfilesystem. You will still have
  88.             to mount devices which do not boot to DOS. Also, if BootPri
  89.             is set higher than other devices, DOS will boot from this
  90.             drive.
  91.  
  92.    For instance, to set up a disk which is both recoverable, and also is
  93. automatically mounted on warmboot use:
  94.  
  95.          1 (Recoverable) + 4(AutoBoot) = 5
  96.  
  97.    RamDisk uses the bitmap to deallocate unused sectors. Therefore, non-
  98. AMIGA disks cannot be copied to RamDisk.
  99. */
  100.  
  101. /* Our boot disk. */
  102.  
  103. RRD:
  104.            Device = ramdisk.device
  105.            Unit   = 0
  106.            Flags  = 5
  107.            Surfaces  = 2
  108.            BlocksPerTrack = 11
  109.            Reserved = 2
  110.            Interleave = 0
  111.            LowCyl = 0 ;  HighCyl = 79
  112.            Buffers = 1
  113.            BufMemType = 5
  114.            Mount = 1
  115.            BootPri = -127
  116.            Priority = 20
  117. #
  118.  
  119. /* an example of a ramdisk using the FastFileSystem */
  120. Fast:
  121.            Device = ramdisk.device
  122.            Unit   = 30
  123.            Flags  = 1
  124.            Surfaces  = 2
  125.            BlocksPerTrack = 11
  126.            Reserved = 2
  127.            Interleave = 0
  128.            LowCyl = 0 ;  HighCyl = 79
  129.            Buffers = 1
  130.            BufMemType = 5
  131.            Mount = 1
  132.            GlobVec = -1
  133.            FileSystem = l:FastFileSystem
  134.            MaxTransfer = 512
  135.            DosType = 0x444F5301
  136.            BootPri = -128
  137. #
  138.  
  139.  
  140.